home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9378 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: erich.triumf.ca!bennett
  2. From: bennett@erich.triumf.ca (P.Bennett)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Watcom String Initialization
  5. Date: 9 Mar 1996 16:27 PST
  6. Organization: TRIUMF: Tri-University Meson Facility
  7. Distribution: world
  8. Message-ID: <9MAR199616271872@erich.triumf.ca>
  9. References: <N.030996.173901.65@mail>
  10. NNTP-Posting-Host: ftp.triumf.ca
  11. News-Software: VAX/VMS VNEWS 1.50    
  12.  
  13. In article <N.030996.173901.65@mail>, erowe@mail.bayou.com (Eddie Rowe) writes...
  14. >Has anyone experienced any problems with strings initialization when using 
  15. >Watcom's compiler?  I have run into incidents where LOCAL strings are not being 
  16. >initialized correctly.  
  17.  
  18. Local (really "automatic") variable of any type are _not_ initialized.  If you
  19. want any local variables (of whatever type) initialized to a specific value,
  20. you have to do it yourself.  You may, on occasion, be (un?)lucky and find that
  21. an automatic variable magically has some value you want, but don't depend on
  22. it.
  23.  
  24. Peter Bennett VE7CEI                | Vessels shall be deemed to be in sight
  25. Internet: bennett@triumf.ca         | of one another only when one can be
  26. Packet: ve7cei@ve7kit.#vanc.bc.ca   | observed visually from the other
  27. TRIUMF, Vancouver, B.C., Canada     |                          ColRegs 3(k)
  28. GPS and NMEA info and programs: ftp://sundae.triumf.ca/pub/peter/index.html
  29. or: ftp://ftp-i2.informatik.rwth-aachen.de/pub/arnd/GPS/peter/index.html
  30.  
  31.